@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500&family=Nunito+Sans:wght@300;400&family=Poppins:wght@300;400&family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;700&family=Libre+Caslon+Display&family=Playfair+Display+SC:wght@700&family=Playfair+Display:ital,wght@1,400;1,500&family=Poltawski+Nowy:wght@600&family=Source+Sans+Pro:wght@200&display=swap');

body, html {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body{
    background-color: white;
    font-family: Poppins, sans-serif ;
    font-size: 20px;
    color: black;
    line-height: 2;
    letter-spacing: .01em;
    margin: 20px;
}

main{
    margin-left: 40px;
    margin-right: 40px;
}

.logo-img{
max-width: 120px;
height: auto;
padding: 0px;
border-bottom-right-radius: 20px;
}

a{
    width: 10%;
}

header {
    position: relative; 
    z-index: 100;
}

header img {
    position: relative; 
    z-index: 100;
}

#menu a {
    width: 100%;
}

/*Pregress Bar Styles*/

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px; 
    background-color: rgb(245, 124, 204); 
    width: 0%;
    z-index: 9999;
}


.butterfly {
    position: top;
    width: 100px;
    transform: translateY(-100%);
}

.butterfly img {
    width: 10%;
    height: auto;
}

/*Flexbox Styles*/

.flex-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.parallax-bg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
h2 {
    font-size: 12vw;
    font-weight: 200;
    line-height: 15vw;
    font-family: 'Kaisei Opti';
    color: #000000;
    animation: slide-out 01s ease-out forwards;
    transform: translateX(-100%);
}

@keyframes slide-out {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
}

.pink-background {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.parallax-background {
    background-color: rgb(255, 151, 234);
    width: 100%;
    height: 1000px;
    position: absolute;
    z-index: 1;
}

.parallax-text {
    position: relative;
    z-index: 2;
    padding: 50px;
    display: inline-block;
}



/*TipsCards Styles*/

.h3{
    font-size: 50px;
    font-weight: 200;
    font-family: 'Kaisei Opti';
    color: #333;
    padding-left: 30px;
    padding-right: 7px;
    
  
}
.card-container {
    width: 300px;
    height: 250px;
    perspective: 1000px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    width: 250px;
    height: 250px;
    background-color: lightgreen;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s;
}

.card:hover {
    transform: rotateY(180deg);
  }

.card .front, .card .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.card .front {
    text-align: center;
    padding-top: 70px;
    font-size: 50px;
}

.card .back {
    background-color: rgb(255, 91, 211);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: small;
  }
  .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

hr{
    width: 50%;
}


.container h3 {
font-size: 30px;
}
/*  Planners styling */

.flex-container2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    flex-wrap: wrap;
}
  
.box {
    width: calc(50% - 16px);
    text-align: center;
    margin-bottom: 16px;

}
  
.box img {
    width: 12em;
    height: 12em;
    object-fit: cover;
    border-radius: 20%;
}
  
.box p {
  padding: 8px 16px;
  font-size: 20px;
}


.box-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 16px auto;
}

/* Home Organization Styling */

.flex-homeorg-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    flex-wrap: wrap;
    column-gap: 0px;
}

.home-box {
    width: calc(50% - 16px);
    text-align: center;
    margin-bottom: 16px;

}
  
.home-box img {
    width: 60%;
    height: 20;
    object-fit: cover;
    border-radius: 25%;
}
  
.home-box p {
  padding: 2px 2px;
  font-size: 30px;
}

.home-box-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 16px auto;
}

.follow{
    font-size: 15px;
    font-weight: bold;
    color: black;
    text-align: center;
}

.socials{
    text-align: center;
    font-size: 20px;
    color: black;
}

.socials img{
    width: 44px;
    height: 44px;
    color : black;
    
}

/* quiz form styling */

.ff-form {
    background: lightgreen!important;
    color: #fff !important;
}


/*Planners & More Page Styling*/

.planners-heading {
    text-align: center;
    padding-top: 50px;
}

.planners-container {
    display: flex;
    justify-content: center;
    align-items: wrap;
    gap: 50px;
    padding: 16px;
    margin: 0;
    padding: 0px;
    overflow-x: auto ;
}


.item2 {
    width: 300px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    margin-right: 10px;
}

.item2:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.image-p-wrapper {
    width: 300px;
    height: 200px;
    border-radius: 0%;
    overflow: hidden;
    margin: 16px auto;
}

.item2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.item2 h3 {
    margin-bottom: 8px;
}

.item2 p {
    padding: 18px
}

.custom-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .text-container {
    flex: 1;
    margin-right: 20px;
    font-size: 16px;
  }
  
  .images-container {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: flex-start;
    max-width: 50%;
    height: 300px; 
  }
  
  .images-container img {
    object-fit: cover;
    margin: 5px;
  }
  
  .image-1 {
    width: calc(50% - 10px);
    height: calc(50% - 10px);
  }
  
  .image-2 {
    width: calc(50% - 10px);
    height: calc(50% - 10px);
  }
  
  .image-3 {
    width: calc(40% - 10px);
    height: calc(50% - 10px);
  }
  
  .image-4 {
    width: calc(60% - 10px);
    height: calc(50% - 10px);
  }

/*Home OrganizatioN Page Styling*/

.homeorganization-heading {
    text-align: center;
}
  

.homeorganization-container {
    display: flex;
    justify-content: center;
    align-items: wrap;
    gap: 20px;
    padding: 16px;
    margin: 0;
    padding: 20px;
    overflow-x: auto ;
}


.item22 {
    width: 275px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
}

.item22:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.image-h-wrapper {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    margin: 16px auto;
}

.item22 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.item22 h3 {
    margin-bottom: 8px;
}

.item22 p {
    padding: 8px 16px;
}

.bklb-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
    margin: 30px 0;
    padding: 30px;
}
  
.bklb-item {
    flex: 1 0 200px;
    margin-bottom: 0px; 
    
}
  
.bklb-item p {
    margin: 20px 0;
    margin-bottom: 20px;
    font-size: 15px;
}
  
.bklb-item img {
    width: 85%;
    height: auto;
    display: block;
}

section h1 {
    font-size: 35px;
    color: #000000;
    margin-bottom: 20px;
    padding-left: 35px;
}

/* Scrool back to top button Styling */

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgb(255, 139, 240); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #90ff64; /* Add a dark-grey background on hover */
  }
  
